home *** CD-ROM | disk | FTP | other *** search
- global gClicked, currSndVolume
-
- on getMemnames startMember, endMember, LibNumber
- set nameList to []
- repeat with X = startMember to endMember
- add(nameList, the name of member X of castLib LibNumber)
- end repeat
- put nameList
- end
-
- on keepLittleSounds
- set vList to ["mouseDown.aif", "graph1.aif", "graph2.aif", "trashlid.aif"]
- repeat with vSound in vList
- set the purgePriority of member vSound to 1
- end repeat
- end
-
- on HandlePuppetSound stringParam
- stopSounds()
- puppetSound(string(stringParam))
- updateStage()
- repeat while soundBusy(1)
- if the mouseDown then
- puppetSound(0)
- end if
- updateStage()
- end repeat
- stopSounds()
- updateStage()
- end
-
- on HandlePuppetSoundNS stringParam
- stopSounds()
- puppetSound(string(stringParam))
- updateStage()
- DelaySome(15)
- repeat while soundBusy(1)
- updateStage()
- end repeat
- stopSounds()
- updateStage()
- end
-
- on soundClicker playsound
- if soundBusy(1) then
- puppetSound(0)
- else
- puppetSound(playsound)
- set gClicked to the clickOn
- end if
- if the clickOn <> gClicked then
- puppetSound(playsound)
- set gClicked to the clickOn
- end if
- end
-
- on stopSounds
- sound stop 1
- sound stop 2
- puppetSound(0)
- updateStage()
- end
-
- on stopSound2
- if soundBusy(2) then
- sound stop 2
- end if
- end
-
- on setSound whatLevel
- set the soundLevel to whatLevel
- end
-
- on DelaySome howLong
- startTimer()
- repeat while the timer < howLong
- nothing()
- end repeat
- end
-